defaults.valid   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 1
rs 10
c 1
b 0
f 0
1
var defaults = {
2
	width: 2,
3
	height: 100,
4
	format: "auto",
5
	displayValue: true,
6
	fontOptions: "",
7
	font: "monospace",
8
	text: undefined,
9
	textAlign: "center",
10
	textPosition: "bottom",
11
	textMargin: 2,
12
	fontSize: 20,
13
	background: "#ffffff",
14
	lineColor: "#000000",
15
	margin: 10,
16
	marginTop: undefined,
17
	marginBottom: undefined,
18
	marginLeft: undefined,
19
	marginRight: undefined,
20
	valid: function(){}
21
};
22
23
export default defaults;
24